home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / taropyon / cci / midisnd.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-16  |  206 b   |  15 lines

  1.  
  2. char    data[16] =
  3. {
  4.     0xF0,0x41,0x10,0x42,0x12,  0x40,0x00,0x7F,0x00, 0x41,0xF7
  5. };
  6.  
  7. int        main()
  8. {
  9.     printf("\n***** MIDI send test *****\n\n");
  10.  
  11.     MID_init();
  12.     MID_send(0,11,data);
  13.     MID_term();
  14. }
  15.